home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
6984
/
6984.xpi
/
defaults
/
preferences
/
prefs-lazarus.js
Wrap
Text File
|
2009-11-24
|
3KB
|
83 lines
//lazarus version number, used for checking for new installs and updates
pref("extensions.lazarus.version", "");
//should saved forms expire?
pref("extensions.lazarus.expireSavedForms", false);
//keep saved forms for X minutes before removing them from the database
pref("extensions.lazarus.expireSavedFormsInterval", 1);
pref("extensions.lazarus.expireSavedFormsUnit", 10080);
//should we save/restore hidden fields
pref("extensions.lazarus.saveHiddenFields", false);
//should we save/restore password fields
pref("extensions.lazarus.savePasswordFields", false);
//should we save/restore search forms (GET forms containing a single textbox)
pref("extensions.lazarus.saveSearchForms", true);
//save current form if the user stops typing for X many milliseconds
pref("extensions.lazarus.autoSaveInterval", 2000);
// See http://kb.mozillazine.org/Localize_extension_descriptions
pref("extensions.lazarus@interclue.com.description", "chrome://lazarus/locale/lazarus.properties");
//maximum number of save points for a given form
pref("extensions.lazarus.maxSavesPerForm", 8);
//maximum number of autosave points to show in the submenu for a given form
pref("extensions.lazarus.maxAutosavesPerForm", 3);
//maximum number of items to show in the "restore text" submenu
pref("extensions.lazarus.maxTextItemsInSubmenu", 20);
//should we clear saved forms when "Clearing Private Data"
pref("extensions.lazarus.privacy.item.saved.forms", false);
//show the lazarus icon in the status bar
pref("extensions.lazarus.showInStatusbar", true);
//show the lazarus icons in the context menu
pref("extensions.lazarus.showContextMenuIcons", true);
//Allows the user to play with Experimental parts of the program
pref("extensions.lazarus.includeExperimental", false);
//use the first line of text from the saved form as the label of each submenuitem?
//time of save will be used if this is false.
pref("extensions.lazarus.showFormTextInSubMenu", true);
//last time we checked for updates
pref("extensions.lazarus.checkForUpdates", true);
pref("extensions.lazarus.checkForUpdatesBeta", false);
pref("extensions.lazarus.lastUpdateCheck", 0);
//cleanup data on uninstall
pref("extensions.lazarus.uninstall.removeUserSettings", false);
pref("extensions.lazarus.uninstall.removeSavedForms", false);
//debugMode, shows debugging messages in the js console
// 0 : None
// 1 : Errors
// 2 : Warnings
// 3 : Messages
// 4 : DebugMessages
pref("extensions.lazarus.debugMode", 1);
//should we build a searchable full text index of saved text fields
pref("extensions.lazarus.disableSearch", false);
//show a notification when a form is fully restored
pref("extensions.lazarus.showDonateNotification", true);
//should Lazarus be enabled when in private browsing mode
pref("extensions.lazarus.enableInPrivateBrowsingMode", false);
//should we run VACUUM on the database at startup (NOTE: tales ~10 seconds to clean a 30MB database!) not reccomended
pref("extensions.lazarus.cleanDatabaseAtStartup", false);
//should we generate a backup of the database
pref("extensions.lazarus.backupDatabase", true);